[PATCH] Don't update sps if they are only repeated
authorTobias Frost <tobi@debian.org>
Fri, 13 Jan 2023 11:22:45 +0000 (12:22 +0100)
committerAron Xu <aron@debian.org>
Thu, 6 Aug 2026 05:05:03 +0000 (13:05 +0800)
commita6e48fb028d8765d6498e6bcdfbf0b8907ee84e1
treec298c365d0c8610c12e25d77f6a23e9c2b35e4b1
parent9c588e3d56d03153ae86ac64e0cd818c6b99da5e
[PATCH] Don't update sps if they are only repeated

This is an attempt to improve the mitigations from #365 and #366 and picks up an idea I described at #345:

> One way would be just to look at the pointers of the SPS (fast and easy, but
> may reject more than required), or investigate if the SPS used for the image
> generations are "compatible".

This changes do exactly this: It (very conservativly) checks if the old and new sps have
identical information -- except the reference picture set, which I believe is supposed
to be updated by new sps'). If they are basically identical, the old sps will be
used instead of the new one, (of course, reference image set is updated from the new one)

I'm using standalone operator== and helper functions to avoid changing ABI of the library;
if an ABI bump would be done, of course this should go to the respective classes.

Gbp-Pq: Name recycle_sps_if_possible.patch
libde265/decctx.cc
libde265/sps.cc